RosettaCodeData/Task/Get-system-command-output/Wren/get-system-command-output-1.wren
2023-12-16 21:33:55 -08: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"))