mirror of https://github.com/dirtbags/moth.git
13 lines
264 B
JavaScript
13 lines
264 B
JavaScript
|
// Moth dashboard
|
||
|
// requires: terminal.js
|
||
|
|
||
|
function start() {
|
||
|
var t = new Terminal(document.getElementById("output"));
|
||
|
|
||
|
t.par("This is a paragraph, bitches!");
|
||
|
t.pre("This is pre");
|
||
|
t.par("Another par");
|
||
|
}
|
||
|
|
||
|
window.addEventListener("load", start);
|