Hi,
It's possible to run another program in rust? I have my rust program (program.exe) and I want run program1.exe with program.exe
Hi,
It's possible to run another program in rust? I have my rust program (program.exe) and I want run program1.exe with program.exe
Yes, it's possible -- see std::process
.
Thanks you