Read code. Annotate it. That's it.
A simple way to read, write on, and understand code.
Free and open source.
41export async function runJob(job) {
42 const runtime = await getRuntime(job);
43 await runtime.prepare(); blocks — sandbox boots here
44 const result = await runtime.run();
45 return result; no retry if this throws?
46}