Google News
logo
F# - Interview Questions
What is a list in F#?
It is an immutable collection of same type elements. It maintains the order of elements.
F# List Example
let list = [1;2;3;4;5;6;7;8;9]  
for i  in list do  
 printfn "%d" i  
Advertisement