Unix/ls: Difference between revisions

Added XPL0 example.
m (→‎{{header|Phix}}: just names)
(Added XPL0 example.)
Line 1,352:
// Note that output is automatically sorted using this method.
Directory.list(path).each { |f| System.print(f) }</lang>
 
=={{header|XPL0}}==
Works on Raspberry Pi.
<lang XPL0>string 0;
char S;
[S:= "ls";
asm { ldr r0, S
bl system
}
]</lang>
 
=={{header|zkl}}==
772

edits