moth/www/res/moth.js

13 lines
264 B
JavaScript
Raw Normal View History

2016-04-03 18:07:38 -06:00
// 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);