blash/commands/echo.json

16 lines
186 B
JSON

{
"name" : "echo",
"info" : {
"syntax" : "echo [text]",
"brief" : "Display a line of text",
},
"action" : function ( arg )
{
var out = arg + "<br/>\n";
return out;
},
}