I’m trying to build a disassembler and I want to call the assembler from the test cases to generate the binary to disassemble, but I can’t find how to actually call an external program.
I can find that there has been an std.os.exec but that seem to be moved or renamed as I can’t find it.
Probably what you want is not the unix specific exec that replaces the current process, but the spawn, spawnAndWait, or run function of std.process.Child