25 lines
466 B
JavaScript
25 lines
466 B
JavaScript
window.pythonRunner = new BrythonRunner({
|
|
stdout: {
|
|
write(content) {
|
|
window.pythonResult = content;
|
|
window.pythonErr = 0;
|
|
},
|
|
flush() {},
|
|
},
|
|
stderr: {
|
|
write(content) {
|
|
window.pythonResult = content;
|
|
window.pythonErr = 1;
|
|
},
|
|
flush() {},
|
|
},
|
|
stdin: {
|
|
async readline() {
|
|
var userInput = prompt();
|
|
console.log("Received StdIn: " + userInput);
|
|
return userInput;
|
|
},
|
|
},
|
|
onInit() {},
|
|
});
|