15 lines
186 B
JSON
15 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;
|
|
},
|
|
}
|
|
|