//JScript language "Hello World" example //Simply prints out "Hello World!" to the SAM Cast log window //whenever any data is received. function HandleLine(sLine) { Log('Hello World!'); } function Log(Msg) { SongInfo.Log(Msg); }