Visualize a tree: Difference between revisions

Content added Content deleted
(Added F# version)
Line 3: Line 3:


'''Task''': Write a program to produce a visual representation of some tree. The content of the tree doesn't matter, nor does the output format, the only requirement being that the output is human friendly. Make do with the vague term "friendly" the best you can.
'''Task''': Write a program to produce a visual representation of some tree. The content of the tree doesn't matter, nor does the output format, the only requirement being that the output is human friendly. Make do with the vague term "friendly" the best you can.

=={{header|Batch File}}==
Prints a tree of the current directory.
<lang dos>
@tree %cd%
</lang>


=={{header|BBC BASIC}}==
=={{header|BBC BASIC}}==