Files
c3c/resources/examples/ls.c3
2024-09-14 16:17:57 +02:00

10 lines
155 B
Plaintext

import std::io;
fn void main()
{
Path path = path::new_cwd()!!;
foreach (i, p : path::new_ls(path)!!)
{
io::printfn("%02d %s", i, p.str_view());
}
}