RosettaCodeData/Task/Unix-ls/Wren/unix-ls.wren
2023-07-01 13:44:08 -04:00

6 lines
172 B
Text

import "io" for Directory
var path = "./" // or whatever
// Note that output is automatically sorted using this method.
Directory.list(path).each { |f| System.print(f) }