Unix/ls: Difference between revisions

Content deleted Content added
Fix syntax error
→‎{{header|REXX}}: added the REXX language. -- ~~~~
Line 73:
tcl
>>> </lang>
 
=={{header|REXX}}==
The following program works under Windows and used the Windows DIR command to list a bare-bones sorted list.
<lang rexx>/*REXX program lists contents of current folder (ala mode UNIX's LS). */
'DIR /b /on' /*use Windows DIR to list & sort.*/
/*stick a fork in it, we're done.*/<lang>
 
=={{header|Rust}}==