1import * as debug from "debug"; 2const log = debug("browser:index"); 3 4import kernel from "./kernel"; 5import python from "./python"; 6 7async function main() { 8 //await kernel(); 9 await python(); 10 11} 12 13main(); 14 15