Google News
logo
F# - Interview Questions
What is a module in F#?
The Module is a collection of classes, functions, and types. It helps to organize related code so we can maintain code easily.
 
Example :
open Arithmetic  
printf "%d" (sub 20 10)
Advertisement