F#: how to print full list (Console.WriteLine() prints only first three elements)
Posted
by Nike
on Stack Overflow
See other posts from Stack Overflow
or by Nike
Published on 2010-03-25T21:15:56Z
Indexed on
2010/03/25
21:23 UTC
Read the original article
Hit count: 316
Is it possible to print full list without using cycle? I tried:
Console.WriteLine([1;2;3;4;5])
and it prints only three first elements:
[1;2;3; ... ]
© Stack Overflow or respective owner