Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/wapython
Path: blob/main/web/terminal/src/index.ts
1070 views
1
import terminal from "./terminal";
2
3
const element = document.createElement("div");
4
document.body.appendChild(element);
5
document.body.style.margin = "0px";
6
7
async function main() {
8
while (true) {
9
element.innerHTML = "";
10
await terminal(element);
11
}
12
}
13
14
main();
15
16