Google News
logo
F# - Interview Questions
What is XML documentation in F#?
In F#, you can produce documentation from triple-slash (///) code comments. XML comments can precede declarations in code files (.fs) or signature (.fsi) files.
 
Example :
let add x y  = x+y  
let result = lazy (add 10 10)  
printfn "%d" (result.Force())
Advertisement