Run other program

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.

4 Likes

Thanks you :slight_smile: