forked from cory/tildefriends
30 lines
430 B
JavaScript
30 lines
430 B
JavaScript
|
"use strict";
|
||
|
|
||
|
//! {"category": "tests"}
|
||
|
|
||
|
|
||
|
terminal.print("Time to buy a new life jacket.");
|
||
|
/*
|
||
|
terminal.print("hi");
|
||
|
terminal.print("here is some svg:");
|
||
|
terminal.print({svg: {
|
||
|
attributes: {
|
||
|
width: 32,
|
||
|
height: 32,
|
||
|
},
|
||
|
children: [
|
||
|
{
|
||
|
name: "circle",
|
||
|
attributes: {
|
||
|
cx: 16,
|
||
|
cy: 16,
|
||
|
r: 15,
|
||
|
stroke: "green",
|
||
|
"stroke-width": "4",
|
||
|
fill: "yellow",
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
}});
|
||
|
|
||
|
terminal.print("end of svg");*/
|