RosettaCodeData/Task/Get-system-command-output/Wren/get-system-command-output-1.wren
2023-07-01 13:44:08 -04:00

6 lines
176 B
Text

/* get_system_command_output.wren */
class Command {
foreign static output(name, param) // the code for this is provided by Go
}
System.print(Command.output("ls", "-ls"))