Eval untrusted and possibly malicious code.
import eval from "https://deno.land/x/open_eval/index.js";
const ev = new Eval();
ev.eval("python3", "print('hello world')")
.then(data => console.log(data.output));
This package uses Piston to eval your code.