RosettaCodeData/Task/Get-system-command-output/Wren/get-system-command-output-1.wren

7 lines
176 B
Text
Raw Permalink Normal View History

2023-12-16 21:33:55 -08:00
/* Get_system_command_output.wren */
2023-07-01 11:58:00 -04:00
class Command {
foreign static output(name, param) // the code for this is provided by Go
}
System.print(Command.output("ls", "-ls"))