mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
10 lines
155 B
Plaintext
10 lines
155 B
Plaintext
import std::io;
|
|
|
|
fn void main()
|
|
{
|
|
Path path = path::cwd(mem)!!;
|
|
foreach (i, p : path::ls(mem, path)!!)
|
|
{
|
|
io::printfn("%02d %s", i, p.str_view());
|
|
}
|
|
} |