8 lines
190 B
Text
8 lines
190 B
Text
/* run_system_command.wren */
|
|
class Command {
|
|
foreign static exec(name, param) // the code for this is provided by Go
|
|
}
|
|
|
|
Command.exec("ls", "-lt")
|
|
System.print()
|
|
Command.exec("dir", "")
|