blash/commands/echo.json

16 lines
186 B
JSON
Raw Normal View History

2010-12-25 13:27:38 +01:00
{
"name" : "echo",
"info" : {
"syntax" : "echo [text]",
"brief" : "Display a line of text",
},
"action" : function ( arg )
{
var out = arg + "<br/>\n";
return out;
},
}