Google News
logo
F# - Interview Questions
What is an open keyword in F#?
An import declaration specifies a module or namespace. You can reference its elements without using a fully qualified name.
 
Example :
open System  
Console.WriteLine("Hello, this is F# here.") 
Advertisement