1
2
3
import { runPythonAsync } from "https://esm.town/v/joshuahhh/runPythonAsync";
const result = await runPythonAsync("3+4");
console.log("result:", result.toString()); // expected -> `result: 7`