'VBScript 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!") End Function Function Log(Msg) SongInfo.Log(Msg) End Function