xxxxxxxxxx
24
let strs = [
"test",
"trial",
"practice",
"shakedown",
"rehearsal",
"dry run",
"crucible"];
function setup() {
noCanvas();
frameRate(1);
}
function draw() {
let word = random(strs);
term.write(
"This is a " + ansi.format(word, ["red", "bold"]) + ". ");
term.write(
"This is only a " + ansi.format(word, ["red", "bold"]) + ". ");
term.write("\r\n");
}