// returns PID $spawn := fn(proc_exe: ^u8, length: uint): uint { return @eca(3, 6, proc_exe, length) } $fork := fn(): uint return @eca(3, 7) /* TODO: - Spawn an empty process - Call a function to load bytes into that process from a function Or - Manually fill the bytes in - Execute the process via a run type command */