Back

Debug

Hello World

This function is an app equivalent to console.log(msg) which writes text into a console visible in debug mode “true” or “console”.

app.Debug( message )

See Also: SetDebug

Example - Demonstration

function OnStart()
{
    app.CreateDebug();
    app.ShowDebug(true);

    app.Debug("\n\t\tHello World!");
}
    Copy     Copy All       Run      
string